home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 25 / 7 / DISK2574.ZIP / TC20SH.ZIP / TC20.MAK < prev   
Text File  |  1990-12-18  |  442b  |  19 lines

  1. # TC20.MAK for The CTRL+C LIBRARY - MAKEFILE
  2. # Borland Turbo-C Ver. 2.0 
  3.  
  4. DRIVE   = c:
  5.  
  6. MODEL   = s           # <-----change this for different memory model
  7.  
  8. CLIB    = $(DRIVE)\$(MODEL)tc20cl.lib  graphics.lib
  9. INCLUDE = $(DRIVE)\tc20\include
  10.  
  11. target:  cldemo.exe bootdemo.exe
  12.  
  13. cldemo.exe:  
  14.    tcc -m$(MODEL) -DTC20 -I$(INCLUDE) -L$(CLIB) cldemo.c
  15.  
  16. bootdemo.exe:
  17.    tcc -m$(MODEL) -DTC20 -I$(INCLUDE) -L$(CLIB) bootdemo.c
  18.  
  19.